--- title: "Robust Joint Models" author: "Özgür Asar" date: 2019-07-17 categories: ["R"] tags: ["joint models", "regression"] ---

Robust Joint Modelling Framework

Joint modelling of longitudinal time-to-event outcomes typically combines a linear mixed-effects model for repeated measures and a Cox model with time-varying frailty for time-to-event outcome (Asar et al., 2015). Typical distributional assumption is that random-effects and measurement error terms in mixed-effects model are Gaussian. However, this assumption might be restricive for real-life problems, where it is quite likely to have

Gaussian distribution would not give appropriate weights to the outliers, hence inference might be biased and inefficient, and personalised predictions might be misleading. A natural approach would be to replace the Gaussian assumption with t distribution. Technical details of joint models with t distributions, and associated inferential methods are skipped here, and interested reader is referred to Asar, Fournier and Dantan (2019).

Implementation

We describe the R package robjm to implement the joint models with Gaussian and t distributed random-effects and error terms, and subsequently to obtain personalised dynamic predictions. For illustration, we will use the AIDS data-set (first 250 subjects only). Note that the biomarker of interest is the CD4 cell counts, and the survival event is death.

robjm is still under development, hence is currently only available from Github. Note that robjm internatlly calls tidyverse and rstan packages.

To install robjm from Github and load into the working environment, use the following lines:

#devtools::install_github("ozgurasarstat/robjm", quiet = TRUE)
suppressMessages(library(robjm))

AIDS data-set can be loaded prepared for analysis using

data(aids)
data(aids.id)

aids$drug2 <- ifelse(aids$drug == "ddC", 0, 1)
aids.id$drug2 <- ifelse(aids.id$drug == "ddC", 0, 1)

idlist <- aids.id$patient

long_data <- aids[aids$patient %in% idlist[1:250], ]
surv_data <- aids.id[aids.id$patient %in% idlist[1:250], ]

Below, we first fit the joint model with Gaussian random effects and Gaussian error terms, and then t distributed random effects and t distributed error terms.

## normal normal model
fit_nor_nor <- fit_jm(fixed_long = CD4 ~ obstime, 
                      random_long = ~ obstime, 
                      fixed_surv = cbind(Time, death) ~ drug2, 
                      data_long = long_data,
                      data_surv = surv_data,
                      id_long = "patient",
                      id_surv = "patient",
                      model = "nor_nor",
                      timeVar = "obstime",
                      bh = "weibull",
                      chains = 4,
                      cores = 4,
                      iter = 2000,
                      warmup = 1000,
                      control = list(adapt_delta = 0.9)
                      )
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess

fit_t_t <- fit_jm(fixed_long = CD4 ~ obstime, 
                  random_long = ~ obstime, 
                  fixed_surv = cbind(Time, death) ~ drug2, 
                  data_long = long_data,
                  data_surv = surv_data,
                  id_long = "patient",
                  id_surv = "patient",
                  model = "t_t_mod3",
                  timeVar = "obstime",
                  bh = "weibull",
                  chains = 4,
                  cores = 4,
                  iter = 2000,
                  warmup = 1000,
                  control = list(adapt_delta = 0.9)
                  )
## Warning: There were 2 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
print(fit_nor_nor$res, 
      pars = c("alpha", "Sigma", "sigmasq", "log_lambda", 
               "log_nu", "omega", "eta"))
## Inference for Stan model: cc3bb0e249a9f8cb9af6f1735fffcd05.
## 4 chains, each with iter=2000; warmup=1000; thin=1; 
## post-warmup draws per chain=1000, total post-warmup draws=4000.
## 
##             mean se_mean   sd  2.5%   25%   50%   75% 97.5% n_eff Rhat
## alpha[1]    7.61    0.02 0.32  6.97  7.40  7.60  7.82  8.25   282 1.02
## alpha[2]   -0.20    0.00 0.02 -0.25 -0.21 -0.19 -0.18 -0.15  1137 1.00
## Sigma[1,1] 22.36    0.04 2.25 18.29 20.79 22.23 23.80 27.21  3957 1.00
## Sigma[1,2]  0.09    0.00 0.11 -0.13  0.01  0.09  0.16  0.31  1130 1.00
## Sigma[2,1]  0.09    0.00 0.11 -0.13  0.01  0.09  0.16  0.31  1130 1.00
## Sigma[2,2]  0.04    0.00 0.01  0.02  0.03  0.04  0.05  0.06   286 1.02
## sigmasq     3.61    0.01 0.29  3.10  3.42  3.59  3.79  4.22   797 1.00
## log_lambda -2.90    0.01 0.49 -3.86 -3.24 -2.91 -2.57 -1.94  2141 1.00
## log_nu      0.27    0.00 0.12  0.03  0.20  0.28  0.35  0.49  2528 1.00
## omega[1]    0.52    0.00 0.25  0.05  0.35  0.52  0.69  1.01  4014 1.00
## eta        -0.49    0.00 0.09 -0.70 -0.54 -0.48 -0.43 -0.35  1084 1.00
## 
## Samples were drawn using NUTS(diag_e) at Tue Jul 23 14:05:59 2019.
## For each parameter, n_eff is a crude measure of effective sample size,
## and Rhat is the potential scale reduction factor on split chains (at 
## convergence, Rhat=1).
print(fit_t_t$res, 
      pars = c("alpha", "Sigma", "sigmasq", "phi", "delta", 
               "log_lambda", "log_nu", "omega", "eta"))
## Inference for Stan model: 69f8702e79f5fb7927b6416c942566e8.
## 4 chains, each with iter=2000; warmup=1000; thin=1; 
## post-warmup draws per chain=1000, total post-warmup draws=4000.
## 
##             mean se_mean    sd  2.5%   25%   50%   75% 97.5% n_eff Rhat
## alpha[1]    7.47    0.02  0.33  6.81  7.26  7.48  7.69  8.08   422 1.01
## alpha[2]   -0.19    0.00  0.02 -0.24 -0.21 -0.19 -0.18 -0.15  1633 1.00
## Sigma[1,1] 21.61    0.12  2.37 17.24 19.99 21.50 23.12 26.60   402 1.01
## Sigma[1,2]  0.07    0.00  0.08 -0.09  0.02  0.07  0.13  0.24  1923 1.00
## Sigma[2,1]  0.07    0.00  0.08 -0.09  0.02  0.07  0.13  0.24  1923 1.00
## Sigma[2,2]  0.02    0.00  0.01  0.01  0.02  0.02  0.03  0.04   272 1.01
## sigmasq     1.43    0.01  0.21  1.05  1.29  1.42  1.57  1.88   232 1.03
## phi        39.45    3.21 24.41  8.28 19.41 32.79 56.28 93.53    58 1.06
## delta       3.15    0.04  0.51  2.32  2.79  3.10  3.45  4.30   133 1.04
## log_lambda -2.97    0.01  0.46 -3.89 -3.27 -2.96 -2.65 -2.06  3896 1.00
## log_nu      0.27    0.00  0.11  0.04  0.20  0.27  0.35  0.48  3753 1.00
## omega[1]    0.47    0.00  0.24  0.02  0.31  0.47  0.63  0.94  6266 1.00
## eta        -0.45    0.00  0.07 -0.59 -0.49 -0.45 -0.40 -0.33  2887 1.00
## 
## Samples were drawn using NUTS(diag_e) at Tue Jul 23 14:33:30 2019.
## For each parameter, n_eff is a crude measure of effective sample size,
## and Rhat is the potential scale reduction factor on split chains (at 
## convergence, Rhat=1).

Traceplots of the MCMC samples can be visualised by

traceplot(fit_nor_nor$res, 
          pars = c("alpha", "Sigma", "sigmasq", "log_lambda", 
                   "log_nu", "omega", "eta"),
          inc_warmup = FALSE)

traceplot(fit_t_t$res, 
          pars = c("alpha", "Sigma", "sigmasq", "phi", "delta", 
                   "log_lambda", "log_nu", "omega", "eta"),
          inc_warmup = FALSE)

Dynamic predictions for a new subject, say 251th subject, can be obtained by

newdata <- dplyr::filter(aids, patient == idlist[251])

fore_nor_nor <- predSurv_jm(object = fit_nor_nor, 
                            newdata = newdata, 
                            forecast = list(h = 5, n = 5),
                            B_control = list(nsel_b = 1, init = 0)
                            )
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.92, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.93, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.98, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.003 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.016 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 160 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.88, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.84, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.82, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.432 seconds (Sampling)
## Chain 1:                0.438 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.002 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 20 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.002 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL 'e8c7db24406cdb8693755000f478f00d' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
 
fore_t_t <- predSurv_jm(object = fit_t_t, 
                        newdata = newdata, 
                        forecast = list(h = 5, n = 5),
                        B_control = list(nsel_b = 1, init = 0)
                        ) 
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.05 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.034 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.094 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.11 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.029 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.84, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: There were 10 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.026 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 6 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: There were 4 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.026 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.004 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.027 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.029 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.05 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.034 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.033 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.05 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.028 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.026 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.044 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.062 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: There were 4 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.027 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.034 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.049 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.005 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.029 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.027 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.029 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.029 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.027 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.027 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.036 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.052 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.027 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.7, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.015 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 150 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.028 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.006 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: There were 7 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.044 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.036 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.052 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.026 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.007 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.027 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.044 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.001 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.052 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.029 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.029 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.035 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.05 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.033 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.049 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.05 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.026 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.049 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.03 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.05 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.03 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.97, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.025 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.03 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.028 seconds (Sampling)
## Chain 1:                0.051 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.036 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.049 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.026 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.79, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.053 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.87, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.033 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.029 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.045 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.035 seconds (Sampling)
## Chain 1:                0.051 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.026 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.005 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.029 seconds (Sampling)
## Chain 1:                0.061 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.67, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.03 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.023 seconds (Sampling)
## Chain 1:                0.039 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: There were 4 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.034 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.027 seconds (Sampling)
## Chain 1:                0.049 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.028 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.001 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.033 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.74, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.009 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.033 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.049 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 chains where the estimated Bayesian Fraction of Missing Information was low. See
## http://mc-stan.org/misc/warnings.html#bfmi-low
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.001 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 10 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.05, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.003 seconds (Sampling)
## Chain 1:                0.014 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.69, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.59, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.008 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.008 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.58, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.62, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.66, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.007 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.031 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.021 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.52, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.022 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.025 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.021 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.54, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.03 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.78, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.85, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.35, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.013 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.02, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.024 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.04 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.68, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.052 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.47, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.48, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.77, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.24, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.71, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0.015 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 150 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.08, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.75, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.51, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.53, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.024 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.02 seconds (Sampling)
## Chain 1:                0.043 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.019 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.14, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.042 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.025 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.027 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.73, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.027 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.044 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.2, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.018 seconds (Sampling)
## Chain 1:                0.036 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.022 seconds (Sampling)
## Chain 1:                0.041 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.03 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.038 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: There were 2 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: There were 3 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 2.1, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.023 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.037 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.033 seconds (Warm-up)
## Chain 1:                0.024 seconds (Sampling)
## Chain 1:                0.057 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.011 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.91, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.83, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.023 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.57, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.19, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.8, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.014 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.13, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.33, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.012 seconds (Sampling)
## Chain 1:                0.029 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.43, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.55, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.006 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.95, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.61, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.36, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.46, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.28, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.032 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.02 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.41, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.013 seconds (Warm-up)
## Chain 1:                0.002 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.21, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.019 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.49, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.22, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.012 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.028 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.11, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.89, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.01 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.026 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.45, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.047 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.39, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.18, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.018 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.17, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.29, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.5, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.44, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.12, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.031 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.046 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.033 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.16, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.72, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.38, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.25, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.15, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.27, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.26, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.033 seconds (Sampling)
## Chain 1:                0.05 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.3, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.032 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.048 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.019 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.035 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.42, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 2.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.016 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.6, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.31, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.017 seconds (Warm-up)
## Chain 1:                0.014 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.64, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.34, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.015 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.09, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.031 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.65, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.32, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0 seconds (Warm-up)
## Chain 1:                0.017 seconds (Sampling)
## Chain 1:                0.017 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.4, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: There were 1 divergent transitions after warmup. Increasing adapt_delta above 0.8 may help. See
## http://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
## Warning: Examine the pairs() plot to diagnose sampling problems
## Warning: The largest R-hat is 1.37, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.016 seconds (Warm-up)
## Chain 1:                0.016 seconds (Sampling)
## Chain 1:                0.032 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.07, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.018 seconds (Warm-up)
## Chain 1:                0.004 seconds (Sampling)
## Chain 1:                0.022 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.63, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.034 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.034 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.23, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess
## 
## SAMPLING FOR MODEL '35d62cde7af9a655cdd25a65f0e7dd3f' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 0 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 3
## Chain 1:            adapt_window = 15
## Chain 1:            term_buffer = 2
## Chain 1: 
## Chain 1: Iteration:  1 / 40 [  2%]  (Warmup)
## Chain 1: Iteration:  4 / 40 [ 10%]  (Warmup)
## Chain 1: Iteration:  8 / 40 [ 20%]  (Warmup)
## Chain 1: Iteration: 12 / 40 [ 30%]  (Warmup)
## Chain 1: Iteration: 16 / 40 [ 40%]  (Warmup)
## Chain 1: Iteration: 20 / 40 [ 50%]  (Warmup)
## Chain 1: Iteration: 21 / 40 [ 52%]  (Sampling)
## Chain 1: Iteration: 24 / 40 [ 60%]  (Sampling)
## Chain 1: Iteration: 28 / 40 [ 70%]  (Sampling)
## Chain 1: Iteration: 32 / 40 [ 80%]  (Sampling)
## Chain 1: Iteration: 36 / 40 [ 90%]  (Sampling)
## Chain 1: Iteration: 40 / 40 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.015 seconds (Warm-up)
## Chain 1:                0 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1:
## Warning: The largest R-hat is 1.56, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## http://mc-stan.org/misc/warnings.html#tail-ess

fore_nor_nor$output
##    id  time      mean      2.5%       50%     97.5%
## 1 251 12.67 1.0000000 1.0000000 1.0000000 1.0000000
## 2 251 13.67 0.9393926 0.8132566 0.9526534 0.9902900
## 3 251 14.67 0.8735539 0.6167547 0.8997952 0.9799628
## 4 251 15.67 0.8039135 0.4304560 0.8412782 0.9689927
## 5 251 16.67 0.7322972 0.2671479 0.7786145 0.9576906
## 6 251 17.67 0.6607154 0.1392367 0.7099358 0.9460401
fore_t_t$output
##    id  time      mean      2.5%       50%     97.5%
## 1 251 12.67 1.0000000 1.0000000 1.0000000 1.0000000
## 2 251 13.67 0.9404569 0.8638400 0.9465965 0.9815054
## 3 251 14.67 0.8765395 0.7216619 0.8888991 0.9617783
## 4 251 15.67 0.8090710 0.5699510 0.8274726 0.9409100
## 5 251 16.67 0.7392073 0.4225973 0.7620725 0.9188734
## 6 251 17.67 0.6683610 0.2899543 0.6932775 0.8957786